By obtaining a data command via OnConfigureSelectCommand(TDataCommand,Where,GroupBy) and then running that command, this inversion control method handles the request to obtain TEntityGroup aggregations composed of all TEntity entities in compliance with the Where filtering criteria and grouped according to the GroupBy.

Name Description
OnGet(GroupBy) By obtaining a data command via OnConfigureSelectCommand(TDataCommand,GroupBy) and then running that command, this inversion control method handles the request to obtain TEntityGroup aggregations composed of all TEntity entities grouped according to the GroupBy grouping criteria.
OnGet(GroupBy, OrderBy) By obtaining a data command via OnConfigureSelectCommand(TDataCommand,GroupBy,OrderBy) and then running that command, this inversion control method handles the request to obtain TEntityGroup aggregations composed of all TEntity entities grouped according to GroupBy and finally sorted in the order defined by OrderBy.
OnGet(GroupBy, OrderBy, Paging) By obtaining a data command via OnConfigureSelectCommand(TDataCommand,GroupBy,OrderBy,Paging) and then running that command, this inversion control method handles the request to obtain TEntityGroup aggregations composed of all TEntity entities in the read segment defined by TPagingCriteria, then grouped according to the GroupBy and finally sorted in the order defined by OrderBy.
OnGet(Where, GroupBy) By obtaining a data command via OnConfigureSelectCommand(TDataCommand,Where,GroupBy) and then running that command, this inversion control method handles the request to obtain TEntityGroup aggregations composed of all TEntity entities in compliance with the Where filtering criteria and grouped according to the GroupBy.
OnGet(Where, GroupBy, OrderBy) By obtaining a data command via OnConfigureSelectCommand(TDataCommand,Where,GroupBy,OrderBy) and then running that command, this inversion control method handles the request to obtain TEntityGroup aggregations composed of all TEntity entities in compliance with the Where, then grouped according to the GroupBy and finally sorted in the order defined by OrderBy.
OnGet(Where, GroupBy, OrderBy, Paging) By obtaining a data command via OnConfigureSelectCommand(TDataCommand,Where,GroupBy,OrderBy,Paging) and then running that command, this inversion control method handles the request to obtain TEntityGroup aggregations composed of all TEntity entities in the read segment defined by Paging and in compliance with the Where, then grouped according to the GroupBy and finally sorted in the order defined by OrderBy.
OnGet(TFilteringCriteria, TGroupingCriteria) Handles the request to obtain TEntityGroup aggregations composed of all TEntity entities in compliance with the TFilteringCriteria. (inherited from GroupingDao<TEntity, TEntityGroup, TDataContext, TFilteringCriteria, TGroupingCriteria, TOrderingCriteria, TPagingCriteria, TCarboniteController, TTransaction, TTransactionCreationParameters>).
OnGet(TFilteringCriteria, TGroupingCriteria, TOrderingCriteria) Handles the request to obtain TEntityGroup aggregations composed of all TEntity entities in compliance with the TFilteringCriteria, then grouped according to the TGroupingCriteria and finally sorted in the order defined by TOrderingCriteria. (inherited from GroupingDao<TEntity, TEntityGroup, TDataContext, TFilteringCriteria, TGroupingCriteria, TOrderingCriteria, TPagingCriteria, TCarboniteController, TTransaction, TTransactionCreationParameters>).
OnGet(TFilteringCriteria, TGroupingCriteria, TOrderingCriteria, TPagingCriteria) Handles the request to obtain TEntityGroup aggregations composed of all TEntity entities in the read segment defined by TPagingCriteria and in compliance with the TFilteringCriteria, then grouped according to the TGroupingCriteria and finally sorted in the order defined by TOrderingCriteria. (inherited from GroupingDao<TEntity, TEntityGroup, TDataContext, TFilteringCriteria, TGroupingCriteria, TOrderingCriteria, TPagingCriteria, TCarboniteController, TTransaction, TTransactionCreationParameters>).
OnGet(TGroupingCriteria) Handles the request to obtain TEntityGroup aggregations composed of all TEntity entities grouped according to the TGroupingCriteria. (inherited from GroupingDao<TEntity, TEntityGroup, TDataContext, TFilteringCriteria, TGroupingCriteria, TOrderingCriteria, TPagingCriteria, TCarboniteController, TTransaction, TTransactionCreationParameters>).